home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 131 / XENIATGM131.iso / Shareware / openOffice.org 641 / Linux / f_0281 / smaster
Text File  |  2001-12-19  |  139b  |  11 lines

  1. #!/bin/sh
  2.  
  3. cmd=`dirname "$0"`/soffice
  4.  
  5. if [ "$1" = "" ]
  6. then
  7.     exec "$cmd" private:factory/swriter/GlobalDocument
  8. else
  9.     exec "$cmd" "$@"
  10. fi
  11.